home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / dfue / ripcomm / ripcomm.install < prev    next >
Text File  |  1995-03-09  |  1KB  |  67 lines

  1. ;Installer script for RIPcomm beta1
  2. ;
  3. ;This script assumes you have not installed it previousely?
  4. ;
  5.  
  6. ;Ask where to install the program files.
  7.  
  8. (set name
  9.     (askdir
  10.         (prompt "Where should RIPcomm be installed?")
  11.         (help @askdir-help)
  12.         (default "SYS:")
  13.         (disk)
  14.     )
  15. )
  16.  
  17. (set @default-dest name)
  18. (set fontdir (cat name "/RIPFONTS"))
  19. (set icondir (cat name "/RIPICONS"))
  20.  
  21. (makedir fontdir
  22.     (prompt "Creating a directory for RIP fonts")
  23.     (help @makedir-help)
  24.     (infos)
  25. )
  26. (makedir icondir
  27.     (prompt "Creating a directory for RIP icons")
  28.     (help @makedir-help)
  29.     (infos)
  30. )
  31.  
  32. (copyfiles
  33.     (prompt "Copying RIP fonts...")
  34.     (source "rfonts")
  35.     (dest fontdir)
  36.     (all)
  37. )
  38.  
  39. (copyfiles
  40.     (prompt "Copying ICON files...")
  41.     (source "ricons")
  42.     (dest icondir)
  43.     (all)
  44. )
  45.  
  46. (copyfiles
  47.     (prompt "Copying Amiga fonts...")
  48.     (source "fonts")
  49.     (dest "FONTS:")
  50.     (all)
  51. )
  52.  
  53. (copyfiles
  54.     (prompt "Copying RIPcomm and documentation...")
  55.     (source "")
  56.     (dest name)
  57.     (pattern "RIP#?")
  58. )
  59.  
  60. (copylib
  61.     (prompt "Copying XPRZmodem.library...")
  62.     (help @copylib-help)
  63.     (source "LIBS/xprzmodem.library")
  64.     (dest "LIBS:")
  65.     (confirm)
  66. )
  67.